home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_FW.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  4.5 KB  |  190 lines

  1. ;    Framework Pop-up Menu Configuration
  2. ;
  3. Comment        ("Configured for Framework")
  4.  
  5. ;
  6. ;    Parameters
  7. ;
  8. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  9. EnableBeep    (No)        ;Beeps if wrong button pressed with menu up
  10. Position    (LowerLeft(3,21)) ;Menus in lower lefthand corner
  11. ;
  12. ;    Cursor Definitions
  13. ;
  14. MenuC:    Cursor
  15. (
  16.     Left        ([Left])
  17.     Right        ([Right])
  18.     Up        ([Up])
  19.     Down        ([Down])
  20.     Sensitivity    (30,20)
  21.     Hysteresis    (1,1)
  22. )
  23. WordC:    Cursor
  24. (
  25.     Left        ([Left])
  26.     Right        ([Right])
  27.     Up        ([Up])
  28.     Down        ([Down])
  29.     Sensitivity    (5,8)
  30.     Hysteresis    (4,3)
  31. )
  32. NumsC:    Cursor
  33. (
  34.     Left        ([Left])
  35.     Right        ([Right])
  36.     Up        ([Up])
  37.     Down        ([Down])
  38.     Sensitivity    (13,8)
  39.     Hysteresis    (1,1)
  40. )
  41.  
  42. ;
  43. ;    Button Definitions
  44. ;
  45. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  46. MB:    Button    (Keys([Enter]))        ; Middle button
  47. RB:    Button    (Keys([ESC]))        ; Right button
  48. CLB:    Button    (Menu(CMain))
  49. CRB:    Button    (Menu(Calc))
  50. CRBM:    Button    (Keys([ESC]),Cursor(NumsC),Button(right=CRB))
  51. WLB:    Button    (Menu(WMain))
  52. WRB:    Button    (Menu(Word))
  53. WRBM:    Button    (Keys([ESC]),Cursor(WordC),Button(right=WRB))
  54. CMB:    Button    (Keys([Enter]),Cursor(NumsC),Button(right=CRB))
  55. WMB:    Button    (Keys([Enter]),Cursor(WordC),Button(right=WRB))
  56. ;
  57. ;
  58. ;    Menu Definitions
  59. ;
  60. Main: Menu
  61. (
  62.     Title    ("Main")
  63.     Item    ("Framework Menu",    Keys([INS]))
  64.     Item    ("Up level",        Keys([Minus]))
  65.     Item    ("Down level",        Keys([Plus]))
  66.     Item    ("Shuttle",        Keys([&H8700]))
  67.     Item    ("Functions Keys",    Menu(FK))
  68.     Item    ("Help",        Keys([F1]))
  69.     Item    ("Yes",            Keys("Y"))
  70.     Item    ("Word Mode",        Cursor(WordC),Button(right=WRB),
  71.                     Button(middle=WMB),
  72.                     Button(leftright=WMB),
  73.                     Button(left=WLB))
  74.     Item    ("Numbers Mode",    Cursor(NumsC),Button(right=CRB),
  75.                     Button(middle=CMB),
  76.                     Button(leftright=CMB),
  77.                     Button(Left=CLB))
  78.     Footer    ("Desktop")
  79. )
  80. ;
  81. WMain: Menu
  82. (
  83.     Title    ("Main")
  84.     Item    ("Framework Menu",    Cursor(MenuC),Keys([INS]),
  85.                     Button(right=WRBM))
  86.     Item    ("Up level",        Keys([Minus]))
  87.     Item    ("Down level",        Keys([Plus]))
  88.     Item    ("Shuttle",        Keys([&H8700]))
  89.     Item    ("Functions Keys",    Menu(FK))
  90.     Item    ("Help",        Keys([F1]))
  91.     Item    ("Yes",            Keys("Y"))
  92.     Item    ("Desktop Mode",    Cursor(MenuC),Button(right=RB),
  93.                     Button(middle=MB),
  94.                     Button(leftright=MB),
  95.                     Button(left=LBM))
  96.     Item    ("Numbers Mode",    Cursor(NumsC),Button(right=CRB),
  97.                     Button(middle=CMB),
  98.                     Button(leftright=CMB),
  99.                     Button(left=CLB))
  100.     Footer    ("Word")
  101. )
  102. ;
  103. CMain: Menu
  104. (
  105.     Title    ("Main")
  106.     Item    ("Framework Menu",    Cursor(MenuC),Keys([INS]),
  107.                     Button(right=CRBM))
  108.     Item    ("Up level",        Keys([Minus]))
  109.     Item    ("Down level",        Keys([Plus]))
  110.     Item    ("Shuttle",        Keys([&H8700]))
  111.     Item    ("Functions Keys",    Menu(FK))
  112.     Item    ("Help",        Keys([F1]))
  113.     Item    ("Yes",            Keys("Y"))
  114.     Item    ("Desktop Mode",    Cursor(MenuC),Button(right=RB),
  115.                     Button(middle=MB),
  116.                     Button(leftright=MB),
  117.                     Button(left=LBM))
  118.     Item    ("Word Mode",        Cursor(WordC),Button(right=WRB),
  119.                     Button(middle=WMB),
  120.                     Button(leftright=WMB),
  121.                     Button(left=WLB))
  122.     Footer    ("Numbers")
  123. )
  124. ;
  125.  
  126. FK: Menu
  127. (
  128.     Title    ("Functions Keys Menu")
  129.     Item    ("Help",        Keys([F1]))
  130.     Item    ("Edit Formula",    Keys([F2]))
  131.     Item    ("Drag",        Keys([F3]))
  132.     Item    ("Size",        Keys([F4]))
  133.     Item    ("Recalc",        Keys([F5]))
  134.     Item    ("Extend Select",    Keys([F6]))
  135.     Item    ("Move",        Keys([F7]))
  136.     Item    ("Copy",        Keys([F8]))
  137.     Item    ("Zoom",        Keys([F9]))
  138.     Item    ("View",        Keys([F10]))
  139.     Item    ("Delete",        Keys([DEL]))
  140. )
  141. ;
  142. ;
  143. Calc: Menu
  144. (
  145.     Title    ("Calc")
  146.     Item    ("@Sum(",               Keys("@Sum("))
  147.     Item    ("Select",        Keys([F6]))
  148.     Item    (")",                   Keys(")"))
  149.     Item    ("(",                   Keys("("))
  150.     Item    ("+",                   Keys("+"))
  151.     Item    ("-",                   Keys("-"))
  152.     Item    ("*",                   Keys("*"))
  153.     Item    ("/",                   Keys("/"))
  154. )
  155. ;
  156. Word: Menu
  157. (
  158.     Title    ("Word")
  159.     Item    ("Select Menu",        Menu(Select))
  160.     Item    ("Home",        Keys([Home]))
  161.     Item    ("End",            Keys([End]))
  162.     Item    ("PgUp",        Keys([Pgup]))
  163.     Item    ("PgDn",        Keys([PgDn]))
  164.     Item    ("Top",            Keys([c-Home]))
  165.     Item    ("End",            Keys([c-End]))
  166.     Item    ("@",            Keys("@"))
  167. )
  168. ;
  169. Select: Menu
  170. (
  171.     Title    ("Select")
  172.     Item    ("Next Word",        Keys([c-Right]))
  173.     Item    ("Previous Word",    Keys([c-Left]))
  174.     Item    ("Next Sentence",    Keys([&H9700]))
  175.     Item    ("Previous Sentence",    Keys([&H9600]))
  176.     Item    ("Next Paragraph",    Keys([c-PgDn]))
  177.     Item    ("Previous Paragraph",    Keys([c-PgUp]))
  178. )
  179. ;
  180. ;    Mouse Definition
  181. ;
  182. Mouse
  183. (
  184.     Left        (LBM)
  185.     Middle        (MB)
  186.     Right        (RB)
  187.     LeftRight    (MB)
  188.     Cursor        (MenuC)
  189. )
  190.